GetPropertiesResponse

data class GetPropertiesResponse(result: List<PropertyDescriptor>, internalProperties: List<InternalPropertyDescriptor>?, privateProperties: List<PrivatePropertyDescriptor>?, exceptionDetails: ExceptionDetails?)

Represents response frame that is returned from Runtime#getProperties operation call. Returns properties of a given object. Object group of the result is inherited from the target object.

See also

Constructors

GetPropertiesResponse
Link copied to clipboard
fun GetPropertiesResponse(result: List<PropertyDescriptor>, internalProperties: List<InternalPropertyDescriptor>? = null, privateProperties: List<PrivatePropertyDescriptor>? = null, exceptionDetails: ExceptionDetails? = null)

Properties

exceptionDetails
Link copied to clipboard
val exceptionDetails: ExceptionDetails? = null
Exception details.
internalProperties
Link copied to clipboard
val internalProperties: List<InternalPropertyDescriptor>? = null
Internal object properties (only of the element itself).
privateProperties
Link copied to clipboard
val privateProperties: List<PrivatePropertyDescriptor>? = null
Object private properties.
result
Link copied to clipboard
val result: List<PropertyDescriptor>
Object properties.

Sources

jvm source
Link copied to clipboard